home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWorkshop / Source / PictureDocument.h < prev    next >
Text File  |  1992-05-18  |  414b  |  27 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface PictureDocument : Object
  4. {
  5.     id        window;
  6.     id        scrollView;
  7.     id        imageView;
  8.     id        printInfo;
  9.     
  10.     int        maxWidth;
  11.     int        maxHeight;
  12.     
  13.     char        *fileFormat;
  14. }
  15.  
  16. + newWithName: (const char *)name at: (int *)x and: (int *)y of: (id)image ofType: (char *)n;
  17.  
  18. - free;
  19.  
  20. - print: sender;
  21. - getImage;
  22. - replaceImageWith: (id)newImage;
  23.  
  24. - windowWillClose:sender;
  25. - windowDidBecomeMain:sender;
  26.  
  27. @end